const net/netip.digits

12 uses

	net/netip (current package)
		netip.go#L798: const digits = "0123456789abcdef"
		netip.go#L806: 		b = append(b, digits[x/100])
		netip.go#L809: 		b = append(b, digits[x/10%10])
		netip.go#L811: 	return append(b, digits[x%10])
		netip.go#L820: 		b = append(b, digits[x>>12])
		netip.go#L823: 		b = append(b, digits[x>>8&0xf])
		netip.go#L826: 		b = append(b, digits[x>>4&0xf])
		netip.go#L828: 	return append(b, digits[x&0xf])
		netip.go#L833: 	return append(b, digits[x>>12], digits[x>>8&0xf], digits[x>>4&0xf], digits[x&0xf])